From: Eli Zaretskii Date: Wed, 7 Jul 2021 20:10:52 +0000 (+0300) Subject: * lisp/faces.el: Fix a typo. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~18^2~2180 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=fadfc55db1179712049077b2c195669687bf54dd;p=emacs.git * lisp/faces.el: Fix a typo. --- diff --git a/lisp/faces.el b/lisp/faces.el index a0a47a5cacf..af2f37df967 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -2915,7 +2915,7 @@ It is used for characters of no fonts too." (defface tty-menu-enabled-face '((((class color)) :foreground "yellow" :background "blue" :weight bold) - t :weight bold) + (t :weight bold)) "Face for displaying enabled items in TTY menus." :group 'basic-faces :version "28.1") @@ -2925,7 +2925,7 @@ It is used for characters of no fonts too." :foreground "lightgray" :background "blue") (((class color)) :foreground "white" :background "blue") - t :inherit shadow) + (t :inherit shadow)) "Face for displaying disabled items in TTY menus." :group 'basic-faces :version "28.1")